home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / aptbbs1.lha / APTBBS1 / s / startAPT < prev   
Text File  |  1995-12-07  |  2KB  |  64 lines

  1. ;- Basic Startup-Script for ApT-BBS!
  2. ;- Change the Drive directories to suit your system but dont delete any
  3. ;- assignments unless they are marked as 'optional'.
  4. ;- This script can be renamed to suit your own preferencies, but you should
  5. ;- execute this (Or something similar!) when you want to start the BBS
  6. ;- system up. (Say after a cold re-boot of your Amiga.
  7.  
  8. ;- NOTE: Several directories and sub-directories need to be available
  9. ;-       or commented out. PLEASE read through this script BEFORE you
  10. ;-       attempt to execute it!
  11.  
  12.  
  13. stack 20000
  14. assign APT: dh0:APT
  15. assign ApTRexx: ApT:ApTRexx
  16. assign Flist: ApT:Flist
  17. assign logs: apt:logs
  18. assign TPlates: APT:Templates
  19. assign text: tplates:TXT
  20.  
  21. assign aptNEWS: tplates:news
  22. assign aptGeneral: apt:GeneralFiles
  23. assign modules: apt:modules
  24.  
  25. ;- These 2 assigns are optional, but are 'standard' ones used by many 3rd
  26. ;- party Fidonet mail utilities, so are reccomended.
  27. assign mail: dh0:mail
  28. assign nodelist: mail:nodelist
  29.  
  30. ;- Paragon/Starnet needed assigns. (If you want to run their Doors.)
  31. ;- These Door assigns are optional, but reccomended.
  32. assign bbs: APT:
  33. assign paragon: bbs:
  34. assign starnet: bbs:
  35. assign Doors: APT:Doors
  36.  
  37. ;-- FSED stuff (External Full Screen Editor)
  38. ;-- These are optional, and can be replaced to suit any other external
  39. ;-- CLI based FSED you want to use. (eg the AED editor.)
  40. assign FSED: doors:fsed
  41. assign USER: t:
  42. assign DLGConfig: t:
  43. makedir DLGConfig:Misc
  44. ;--
  45.  
  46. ;-- These assigns cover a TEMPORARY directory that file Uploads will be
  47. ;-- made to. RAM: is reccomended for performance reasons, but if space there
  48. ;-- is limited then use your Hard Drive.
  49. makedir t:Uploads
  50. assign ApTuploads: t:Uploads
  51.  
  52. ;-- These assigns are to allow the CLI handler to operate. And cover Line
  53. ;-- numbers 0 and 1. You should add in other assigns in a similar manner
  54. ;-- to cover any other Line numbers you may want to 'fire up'.
  55. mount APTDEV0: from devs:ApT-Mountlist
  56. mount APTDEV1: from devs:ApT-Mountlist
  57.  
  58. ;-- Finally startup the two 'background' tasks that need to be running
  59. ;-- before any ApT-BBS! line can start up, And run the Arexx variable utility.
  60. run ApT:Fmanager/Fmanager screen=APTBBS
  61. run ApT:ApTserver depth=4
  62. rx aptrexx:setclips.rx
  63.  
  64.